KeyedCollection.contains

Checks if item is in the collection.

  1. bool contains(T item)
    mixintemplate KeyedCollection(T)
    final const nothrow pure @safe @nogc
    bool
    contains
    (
    in T item
    )
  2. bool contains(key_type clIdx)
  3. bool contains(A a)

Parameters

item T

the item you want to see is in the collection

Return Value

Type: bool

true if item is in the collection.

Meta